home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / crypt / crypt_device_1_8.lha / Makefile < prev    next >
Makefile  |  1992-10-25  |  477b  |  26 lines

  1. #
  2. # Makefile for crypt.device
  3. #
  4. # Timo Rossi, 1991
  5. #
  6. # fdev.device was assembled with the A68k assembler by Charlie Gibbs.
  7. #
  8. # createfile was compiled with SAS/C 5.10a
  9. #
  10.  
  11. all:    crypt.device createfile
  12.  
  13. OBJ = cryptdev.o idea68k.o
  14.  
  15. crypt.device:    $(OBJ)
  16.     blink from $(OBJ) to crypt.device library lib:amiga.lib lib:debug.lib
  17.  
  18. cryptdev.o:    cryptdev.a
  19.     a68k -iasminc: cryptdev.a
  20.  
  21. idea68k.o: idea68k.a
  22.     a68k -iasminc: idea68k.a
  23.  
  24. createfile:    createfile.c
  25.     lc -v -csq -s -L createfile.c
  26.